home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February / PCWorld_2008-02_cd.bin / domacnost a kancelar / move action / moveaction.exe / moveaction.conf < prev    next >
INI File  |  2007-12-27  |  4KB  |  117 lines

  1. [main]
  2.  
  3. # source for the images.  This can be either 'webcam', or an HTTP URL (see example below)
  4. source=webcam
  5. # source=http://localhost:8181/webcam.jpg
  6.  
  7. # the movement value that triggers image capture.  This is basically a percentage of the image that must have changed for
  8. # movement detection to be triggered.  For example, setting this to 1 means that only 1% of pixels needs to change in order to 
  9. # trigger movement detection (this will trigger constantly), whereas setting this to 100 means that every pixel needs to change
  10. # and therefore movement detection is very unlikely.  Note that you can adjust this value while the program is running
  11. # by adjusting the slider.
  12. moveTrigger=0
  13.  
  14. # this value specifies how much the RGB values of each pixel need to change in order for a pixel to be considered "changed"
  15. # it's unlikely that you'll ever need to change this, I only put it in as I don't like hard-coding stuff.
  16. pixelTolerance=10
  17.  
  18. # grace period - after launching the program waits this number of seconds before starting the checking process
  19. # (allows time to position webcam)
  20. gracePeriod=5
  21.  
  22. # this is how often the program compares images (milliseconds)
  23. normalFrameinterval=1000
  24.  
  25. # this is how often the program compares images (milliseconds) when movement is detected
  26. fastFrameinterval=200
  27.  
  28. # this is how long the "fastFrameInterval" is used for after movement is detected (seconds)
  29. fastFrameintervalPeriod=5
  30.  
  31. # whether to lock the system when movement detected
  32. lockOnMovement=false
  33.  
  34. # if locking, give the user this number of seconds warning before locking system
  35. cancelPeriod=10
  36.  
  37. # launch this program when movement detected
  38. launchOnMovement=
  39. workingDirectory=c:\
  40.  
  41. # play this sound (.wav file) when movement detected
  42. playSoundOnMovement=
  43.  
  44. # whether to minimize to the system tray
  45. # note there is a problem where the "cancel lock" button does not display when restoring from the tray
  46. # although pressing ESC still works.  I have no idea why this is.
  47. minimizeToTray=false
  48.  
  49. # whether to capture a JPG image when movement detected
  50. saveJpegOnMovement=false
  51.  
  52.  
  53.  
  54. # whether to mail the JPGs to an email address (set to true to enable this)
  55. sendViaEmail=false
  56.  
  57. # how often the mailer thread should check for new images on the disk (milliseconds)
  58. # (the mailing process runs in the background and checks the disk for new JPG files)
  59. # you probably don't need to change this
  60. email.checkfileinterval=500
  61.  
  62. # email message properties, i.e. who to send the message to.  Adjust this accordingly.
  63. email.to=you@mycompany.com
  64. email.from=me@mycompany.com
  65. email.subject=Webcam image
  66. email.body=Webcam image was detected!
  67.  
  68. # email server details, i.e. which SMTP server to send the message through.
  69. # You will probably need to get this info from your ISP.
  70. # the host may look something like smtp.yourisp.com
  71. # it's unlikely that the port will ever be anything but 25 which is the standard smtp port
  72. email.host=smtp.yourisp.com
  73. email.port=25
  74.  
  75.  
  76.  
  77.  
  78. # whether to upload the JPGs to an FTP server  (set to true to enable this)
  79. sendViaFtp=false
  80.  
  81. # how often the ftp upload thread should check for new images on the disk (milliseconds)
  82. # (the ftp upload process runs in the background and checks the disk for new JPG files)
  83. # you probably don't need to change this
  84. ftp.checkfileinterval=500
  85.  
  86. # ftp upload properties
  87. ftp.host=localhost
  88. ftp.port=21
  89. ftp.user=user
  90. # note - you can hard-code the password, but if anyone steals your PC they will be able to access your account.
  91. # Set to *prompt* to have the program prompt you for this instead.
  92. ftp.password=*prompt*
  93. ftp.passive=false
  94. ftp.remoteDirectory=/
  95.  
  96. # leave this blank to upload every JPG file with its sequence number intact
  97. # if you want to upload the same filename every time, enter it here, e.g ftp.uploadFileName=myimage.jpg
  98. # (this may be more useful if you are uploading to a web site that displays a single image file)
  99. ftp.uploadFileName=
  100.  
  101.  
  102.  
  103. # whether move action should always stay on top of other windows
  104. alwaysOnTop=false
  105.  
  106.  
  107. # leave these properties alone, they are used to save the screen size & position
  108. useZone=true
  109. self.Top=324
  110. self.Left=778
  111. self.Height=450
  112. self.Width=445
  113. pnlDetectionZone.Top=61
  114. pnlDetectionZone.Left=136
  115. pnlDetectionZone.Height=130
  116. pnlDetectionZone.Width=167
  117.